5d55574c107ee7a0bf77ab0ce5dbc82a169bf79d,src/com/gh4a/utils/IntentUtils.java,IntentUtils,launchBrowser,#Context#Uri#,149

Before Change


        if (intent != null) {
            context.startActivity(intent);
        } else {
            ToastUtils.showMessage(context, R.string.no_browser_found);
        }
    }

After Change


        if (intent != null) {
            context.startActivity(intent);
        } else {
            Toast.makeText(context, R.string.no_browser_found, Toast.LENGTH_LONG).show();
        }
    }